home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-06-26 | 500 b | 22 lines | [TEXT/CWIE] |
-
- // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
- // free source code - do whatever you like with it
-
- // uniform access to mac and universal pictures through common interface
-
- #ifndef gepicture_H
- #define gepicture_H
-
- #include "common.h"
-
- struct GEPicture;
- typedef GEPicture* GEPictureRef;
-
- GEPictureRef GetGEPicture( int res_id );
- Rect GetGEPictureFrame( GEPictureRef );
- void DrawGEPicture( GEPictureRef, const Rect* );
- void DisposeGEPicture( GEPictureRef );
-
- #endif
-
-